Return the summation of an array


Posted by Christy on 2022-04-19

Description: Write a function named sum that accepts an array and return the summation of an array.

function sum(arr) {
  let result = 0;
  for (let i = 0; i < arr.length; i++) {
    result += arr[i];
  }
  return result;
}

console.log(sum([1, 2, 3])); // 6
console.log(sum([-1, 1, 2, -2, 3, -3])); // 0

The other answers:

function sum(arr) {
  let i = 0;
  let result = 0;
  do {
    result += arr[i];
    i++;
  } while (i < arr.length);
  return result;
}

console.log(sum([1, 2, 3])); // 6
console.log(sum([-1, 1, 2, -2, 3, -3])); // 0
function sum(arr) {
  let i = 0;
  let result = 0;
  while (i < arr.length) {
    result += arr[i];
    i++;
  }
  return result;
}

console.log(sum([1, 2, 3])); // 6
console.log(sum([-1, 1, 2, -2, 3, -3])); // 0









Related Posts

七天學會 swift - 讀取網頁資料 Day5

七天學會 swift - 讀取網頁資料 Day5

英文

英文

[day 04] Class & constructor: 吃語法糖別噎到

[day 04] Class & constructor: 吃語法糖別噎到


Comments